From: Roger Pau Monne Date: Fri, 22 Nov 2013 11:54:08 +0000 (+0100) Subject: libxl: fix fd check in libxl__spawn_local_dm X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5865 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=3b88d95e9c0a5ff91d5b60e94d81f1982af57e7f;p=xen.git libxl: fix fd check in libxl__spawn_local_dm Checking the logfile_w fd for -1 on failure is no longer true, because libxl__create_qemu_logfile will now return ERROR_FAIL on failure which is -3. While there also add an error check for opening /dev/null. Signed-off-by: Roger Pau Monné Acked-by: Ian Campbell Cc: Ian Jackson Cc: Andrew Cooper --- diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index 292e351787..be39a62ff7 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -1228,6 +1228,11 @@ void libxl__spawn_local_dm(libxl__egc *egc, libxl__dm_spawn_state *dmss) goto out; } null = open("/dev/null", O_RDONLY); + if (null < 0) { + LOGE(ERROR, "unable to open /dev/null"); + rc = ERROR_FAIL; + goto out_close; + } const char *dom_path = libxl__xs_get_dompath(gc, domid); spawn->pidpath = GCSPRINTF("%s/%s", dom_path, "image/device-model-pid"); @@ -1275,8 +1280,8 @@ retry_transaction: rc = 0; out_close: - if (null != -1) close(null); - if (logfile_w != -1) close(logfile_w); + if (null >= 0) close(null); + if (logfile_w >= 0) close(logfile_w); out: if (rc) device_model_spawn_outcome(egc, dmss, rc);